home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / Peon / PeonSDK-Win32-1.0.0.exe / {app} / PeonMain / source / Quaternion.cpp < prev    next >
C/C++ Source or Header  |  2005-11-18  |  208b  |  19 lines

  1.  
  2. #include "Quaternion.h"
  3.  
  4. namespace peon
  5. {
  6.     Quaternion::Quaternion(float _x, float _y, float _z, float _w)
  7.     {
  8.         x = _x;
  9.         y = _y;
  10.         z = _z;
  11.         w = _w;
  12.     }
  13.  
  14.     Quaternion::~Quaternion()
  15.     {
  16.     }
  17. }
  18.  
  19.